home *** CD-ROM | disk | FTP | other *** search
/ PCMania 52 / PCMania CD52_1.iso / setup.bat < prev    next >
DOS Batch File  |  1996-05-20  |  634b  |  37 lines

  1. @echo  off
  2.  
  3. mode co80
  4.  
  5. IF "%1" == "ON"        goto on:
  6. IF "%1" == "on"        goto on:
  7. IF "%1" == "off"    goto off:
  8. IF "%1" == "OFF"    goto off:
  9. IF "%1" == "snd"    goto snd:
  10. IF "%1" == "SND"    goto snd:
  11.  
  12. echo Type SETUP SND to change sound card setup
  13. echo Type SETUP OFF to disable UniVBE
  14. echo Type SETUP ON to re-enable UniVBE
  15. goto exit
  16.  
  17. :on
  18. IF NOT EXIST uvconfig.exe GOTO reinstall
  19. call uvconfig -p audio\
  20. goto exit
  21.  
  22. :off
  23. del audio\univbe.drv
  24. del audio\uvconfig.dat
  25. goto exit
  26.  
  27. :snd
  28. cd audio
  29. call setsound.exe
  30. cd ..
  31. goto exit
  32.  
  33. :reinstall
  34. echo Setup is unable to find UniVBE.exe
  35. echo Please re-install the game.
  36. :exit
  37.